《JAVA语言程序设计》期末考试试题及答案 您所在的位置:网站首页 创建一个名为 mypackage 的包的语句是 《JAVA语言程序设计》期末考试试题及答案

《JAVA语言程序设计》期末考试试题及答案

2024-07-14 17:36| 来源: 网络整理| 查看: 265

 《JAVA语言程序设计》期末考试试题及答案  一、单选择题

1、编译Java  Application 源程序文件将产生相应的字节码文件,这些字节码文件的扩展名为(B)。     A. java                      B. .class     C. html                      D. .exe 2、设 x = 1 , y = 2 , z = 3,则表达式  y+=z--/++x  的值是(A)。     A. 3                         B. 3. 5     C. 4                         D. 5 3、不允许作为类及类成员的访问控制符的是( C )。     A. public                    B. private     C. static                     D. protected 4、为AB类的一个无形式参数无返回值的方法method书写方法头,使得使用类名AB作为前缀就可以调用它,该方法头的形式为( A )。     A. static void method( )                    B. public void method( )         C. final void method( )                     D. abstract void method( ) 5 给定java 代码如下,编译运行后,输出结果是( C)(选择一项)。                                   public class test {  static int i;  public int aMethod() {    i++;    return i;  }  public static void main (String args[]) {             Test test=new Test() ;           test.aMethod () ;  System.out.println (test.aMethod()) ;  } }           a) 0    b) 1   c) 2    d) 3      

二、填空题

1、开发与运行Java程序需要经过的三个主要步骤为   ( 编辑源程序     )、     ( 编译生成字节码 )    和     (  解释运行字节码  )    。 2、在Java的基本数据类型中,char型采用Unicode编码方案,每个Unicode码占 用     2    字节内存空间,这样,无论是中文字符还是英文字符,都是占 用     2    字节内存空间。 3、设 x = 2 ,则表达式 ( x + + )/3 的值是      0      。 4、若x = 5,y = 10,则x < y和x >= y的逻辑值分别为   true     和    false   。 5、   抽象(abstract)   方法是一种仅有方法头,没有具体方法体和操作实现的方法,该方法必须在抽象类之中定义。 最终(final) 方法是不能被当前类的子类重新定义的方法。 6、创建一个名为 MyPackage 的包的语句是 package   MyPackage ;  , 该语句应该放在程序的位置为:  应该在程序第一句                。 7、设有数组定义:int   MyIntArray[ ] = { 10 , 20 , 30 , 40 , 50 , 60 , 70};   则执行以下几个语句后的输出结果是     120      。     int s = 0 ;     for (int i = 0 ; i < MyIntArray.length ; i + + )          if ( i % 2 = = 1 )     s += MyIntArray[i] ;    System.out.println(s); 8、在Java程序中,通过类的定义只能实现  单  重继承,但通过接口的定义可以实现    多   重继承关系。

三、写出下面程序的运行结果

import java.io.*; public class abc { public static void main(String args [ ]) { AB s = new AB("Hello!","I love JAVA."); System.out.println(s.toString( )); } } class AB { String s1; String s2; public AB(String str1, String str2) { s1 = str1; s2 = str2; } public String toString( ) { return s1+s2; } }

运行结果:Hello! I love JAVA.

import java.io.* ; public class abc { public static void main(String args[ ]) { int i, s = 0 ; int a[ ] = { 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 , 90 }; for ( i = 0 ; i < a.length ; i ++ ) if ( a[i]%3 = = 0 ) s += a[i] ; System.out.println("s="+s); } }

运行结果:s = 180

class Parent {

    String one, two;

    public Parent(String a, String b){

      one = a;

      two = b;

    }

    public void print(){ System.out.println(one); }

  }

  public class Child extends Parent {

    public Child(String a, String b){

      super(a,b);

    }

    public void print(){

      System.out.println(one + " to " + two);

    }

    public static void main(String args[]){

      Parent p = new Parent("south", "north");

      Parent t = new Child("east", "west");

      p.print();

      t.print();

    }

  }

运行结果 south

  east to west



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有